forked from yaojiach/red-panda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.33 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
# -*- coding: utf-8 -*-
import io
import re
from collections import OrderedDict
from setuptools import setup, find_packages
with io.open('README.rst', 'rt', encoding='utf8') as f:
readme = f.read()
with io.open('red_panda/__init__.py', 'rt', encoding='utf8') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
setup(
name='red-panda',
version=version,
url='https://github.com/yaojiach/red-panda',
project_urls=OrderedDict((
('Code', 'https://github.com/yaojiach/red-panda'),
('Issue tracker', 'https://github.com/yaojiach/red-panda/issues'),
)),
license='MIT',
author='Jiachen Yao',
maintainer='Jiachen Yao',
description='Pandas and AWS interoperability for data science.',
long_description=readme,
packages=find_packages(exclude=['tests']),
python_requires='>=3.6',
install_requires=[
'pandas',
'psycopg2-binary',
'boto3',
'awscli',
],
extras_require={
'dev': [
'python-dotenv',
'pytest',
'tox',
],
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
],
)