-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (28 loc) · 1.11 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
from setuptools import find_packages, setup
import redshift_unloader
requirements = [name.strip() for name in open('requirements.txt').readlines()]
test_requirements = [name.strip() for name in open('requirements-test.txt').readlines()]
readme = open('README.md', 'r').read()
setup(
name='redshift-unloader',
version=redshift_unloader.__version__,
description='Unload utility for Amazon Redshift',
long_description=readme,
long_description_content_type='text/markdown',
author='Chaerim Yeo',
author_email='[email protected]',
url='https://github.com/cryeo/redshift-unloader',
license='MIT License',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=requirements,
tests_require=test_requirements,
python_requires='>=3.6',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)