Commit 72950cfedfd46e35a132b16e5c9d548a38f8e3ab
1 parent
4c5db5b9
Exists in
master
and in
39 other branches
Added MANIFEST.in and setup.py
Showing
2 changed files
with
43 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,37 @@ | @@ -0,0 +1,37 @@ | ||
1 | + | ||
2 | +from setuptools import setup, find_packages | ||
3 | +from pip.req import parse_requirements | ||
4 | + | ||
5 | +reqs = [str(req.req) for req in parse_requirements('requirements.txt') if req] | ||
6 | + | ||
7 | + | ||
8 | +EXCLUDE_FROM_PACKAGES = [] | ||
9 | + | ||
10 | + | ||
11 | +setup( | ||
12 | + name='colab', | ||
13 | + version='2.0a1', | ||
14 | + url='https://github.com/colab-community/colab', | ||
15 | + author='Sergio Oliveira', | ||
16 | + author_email='sergio@tracy.com.br', | ||
17 | + description='Collaboration platform for communities', | ||
18 | + license='LICENSE.txt', | ||
19 | + packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES), | ||
20 | + include_package_data=True, | ||
21 | + zip_safe=False, | ||
22 | + long_description=open('README.rst').read(), | ||
23 | + install_requires=reqs, | ||
24 | + classifiers=[ | ||
25 | + 'Development Status :: 3 - Alpha', | ||
26 | + 'Environment :: Web Environment', | ||
27 | + 'Framework :: Django', | ||
28 | + 'Intended Audience :: Developers', | ||
29 | + 'Operating System :: OS Independent', | ||
30 | + 'Programming Language :: Python', | ||
31 | + 'Programming Language :: Python :: 2', | ||
32 | + 'Programming Language :: Python :: 2.7', | ||
33 | + 'Topic :: Internet :: WWW/HTTP', | ||
34 | + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | ||
35 | + 'Topic :: Internet :: WWW/HTTP :: WSGI', | ||
36 | + ], | ||
37 | +) |