-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (31 loc) · 896 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
from setuptools import setup
setup(
name='postdoc',
version='0.4.0',
description='A helper for Postgres + Docker that works for free',
long_description=open('README.rst').read(),
author='Chris Chang',
author_email='[email protected]',
url='https://github.com/crccheck/postdoc',
py_modules=['postdoc'],
entry_points={
'console_scripts': [
'phd = postdoc:main',
],
},
license='Apache',
tests_require=[
'mock==1.0.1',
],
test_suite='test_postdoc',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Topic :: Utilities',
],
)