-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
38 lines (33 loc) · 1.06 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
#!/usr/bin/env python
import os
from distutils.core import setup
version = '1.4.1'
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
]
root_dir = os.path.dirname(__file__)
if not root_dir:
root_dir = '.'
long_desc = open(root_dir + '/README').read()
setup(
name='django-dag',
version=version,
url='https://github.com/elpaso/django-dag',
author='Alessandro Pasotti',
author_email='[email protected]',
license='GNU Affero General Public License v3',
packages=['django_dag'],
package_dir={'django_dag': 'django_dag'},
#package_data={'dag': ['templates/admin/*.html']},
description='Directed Acyclic Graph implementation for Django 1.6+',
classifiers=classifiers,
long_description=long_desc,
)