-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
50 lines (47 loc) · 1.45 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
47
48
49
50
import setuptools
from setuptools import find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pyshopify",
version="0.9.9",
author="Joseph Trabulsy",
author_email="[email protected]",
keywords="shopify, sql server, mssql, python, docker, python3, pyodbc",
description="Shopify Orders & Customers API library with containerized \
MS SQL database",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pyshopify",
project_urls={
"Bug Tracker": "https://github.com/pyshopify/issues",
},
classifiers=[
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'click>=8.0.1',
'numpy>=1.20.3',
'pandas>=1.2.4',
'python-dateutil',
'requests>=2.20',
'tzdata',
'sqlalchemy>=1.4.1, <2.0',
],
extra_requires={
'pymysql': ['pymysql>=1.0.2'],
'mysqldb': ['mysqlclient>=2.0.3'],
'pyodbc': ['pyodbc>=4.0.30'],
},
package_dir={'': 'src'},
packages=find_packages('src', exclude=["test"]),
python_requires=">=3.9",
entry_points={
'console_scripts': [
'shopify_cli = pyshopify.cli:cli_runner',
'shopify_db = pyshopify.cli:build_database',
],
}
)