forked from kevinjqiu/tangerine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (28 loc) · 917 Bytes
/
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
import setuptools
import json
def get_install_requires():
with open('Pipfile.lock') as f:
piplock = json.load(f)
return [
'{}{}'.format(dep, details['version'])
for dep, details in piplock['default'].items()
]
setuptools.setup(
name="tangerine",
version=open('tangerine/VERSION').read(),
url="https://github.com/kevinjqiu/tangerine",
author="Kevin J. Qiu",
author_email="[email protected]",
description="API for the Tangerine Bank",
long_description=open('README.md').read(),
include_package_data=True,
packages=['tangerine'],
install_requires=get_install_requires(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)