-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.04 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
"""Setup file to automate the install of sdic in the Python environment."""
from setuptools import setup
from sdic.constants import VERSION
setup(
name='sdic',
version=VERSION,
author='Laurent Raufaste',
author_email='[email protected]',
url='https://github.com/percolate/sdic',
description='Asynchronous soft constraints executed against you databases',
keywords='sdic sql mysql postgresql sqlalchemy data integrity constraints',
license='GPLv3',
packages=['sdic'],
install_requires=['docopt', 'prettytable', 'lockfile'],
entry_points={
'console_scripts': [
'sdic=sdic.main:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
('License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)'),
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Utilities',
],
)