-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 740 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
from setuptools import setup
version = '0.1.0'
setup(
name='django-activitystreams',
version=version,
description='Reusable application for generating activity streams',
long_description=open('docs/overview.rst').read(),
author='Nowell Strite',
author_email='nowell@strite.org',
url='http://github.com/nowells/django-activitystreams/',
packages=['activitystreams'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
)