-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.05 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.05 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cssaw_central",
version="1.3.0",
author="Luke Williams",
author_email="williams.luke.2001@gmail.com",
description="Access Point Module to CSSAW Database",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CSSAW/CSSAW_Central",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
],
entry_points={
'console_scripts': [
'csvsql = cssaw_central.csvsql:main'
]
},
python_requires='>=3.6',
install_requires=[
'numpy>=1.19.0',
'pandas>=1.0.5',
'PyMySQL>=0.9.3',
'python-dateutil>=2.8.1',
'pytz>=2020.1',
'six>=1.15.0',
'SQLAlchemy>=1.3.17',
]
)