-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
39 lines (36 loc) · 1.03 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
from setuptools import setup, find_packages
import depends
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
]
setup(
name='Depends',
version=depends.version,
description='quality assurance for content',
long_description=open('README.txt').read(),
author='Andrew Gardner',
author_email='[email protected]',
url='https://github.com/mottosso/dependsworkflow',
license="LICENSE.txt",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=classifiers,
package_data={
'depends': [
'depends',
'*.stylesheet',
'data_packets/*.py',
'doc/*.txt',
'file_dialogs/*.py',
'nodes/*.py',
'output_recipes/*.py',
]
},
)