-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
46 lines (42 loc) · 1.62 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
40
41
42
43
44
45
46
import os
from setuptools import setup
dir_path = os.path.dirname(os.path.realpath(__file__))
_read = lambda filename: open(os.path.join(dir_path, filename)).read()
setup(name='datafluent',
version=_read('VERSION'),
description='Build a better understanding of your data in PostgreSQL.',
long_description=_read('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/marklit/datafluent_pg',
project_urls={
"Bug Tracker": "https://github.com/marklit/datafluent_pg/issues",
"Documentation": "https://datafluent.readthedocs.io/en/latest/",
"Source Code": "https://github.com/marklit/datafluent_pg",
},
author='Mark Litwintschik',
author_email='mark@marksblogg.com',
license='MIT',
packages=['datafluent'],
scripts=['bin/datafluent',],
install_requires=[
"humanfriendly",
"Pandas",
"psycopg2-binary",
"SQLAlchemy",
"typer",
"xlsxwriter",
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Information Analysis',
],
zip_safe=False)