-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (36 loc) · 996 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
'sqlparse>=0.1.8'
]
test_requirements = [
'pytest',
]
package_name = 'pgdiff'
setup(
name=package_name,
version='0.2',
url='https://github.com/Onapsis/pgdiff',
description="A fork of PgDiffPy from https://github.com/Dancer3809/PgDiffPy",
long_description=readme,
author="Onapsis",
author_email='[email protected]',
packages=find_packages(include=['pgdiff*']),
include_package_data=True,
install_requires=requirements,
zip_safe=False,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
],
test_suite='tests',
tests_require=test_requirements,
entry_points={
'console_scripts': [
'pgdiff = pgdiff.PgDiff:main',
]
}
)