-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (43 loc) · 1.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# This file is part of django-objs.
import warnings
from setuptools import setup, find_packages
try:
README = open('README.md').read() + '\n\n'
except:
warnings.warn('Could not read README.md')
README = None
try:
REQUIREMENTS = open('requirements.txt').read()
except:
warnings.warn('Could not read requirements.txt')
REQUIREMENTS = None
setup(
name='django-objs',
version="0.1",
description=(
'Django app for team time tracking and sprint planning, useful for SCRUM.'
),
long_description=README,
install_requires=REQUIREMENTS,
license='AGPL',
author='Daniel Garcia Moreno',
author_email='[email protected]',
url='http://github.com/wadobo/django-objs/',
packages=find_packages(exclude=("test_project",)),
include_package_data=True,
classifiers=[
'Development Status :: 6 - Mature',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities'
],
)