-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (40 loc) · 1.23 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='pystackql',
version='v3.7.0',
description='A Python interface for StackQL',
long_description=readme,
author='Jeffrey Aven',
author_email='[email protected]',
url='https://github.com/stackql/pystackql',
license=license,
packages=['pystackql'],
# include_package_data=True,
install_requires=[
'requests',
'pandas',
'IPython',
],
# entry_points={
# 'console_scripts': [
# 'stackql = pystackql:setup'
# ]
# },
classifiers=[
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'License :: OSI Approved :: MIT License',
]
)