-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 956 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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as f:
long_description = f.read()
about = {}
with open(os.path.join(here, 'adapy', '__version__.py'), 'r') as f:
exec(f.read(), about)
setup(
name='adapy',
version=os.getenv('BUILD_VERSION', about['__version__']),
description='Python library for the ada REST API',
long_description=long_description,
long_description_content_type='text/markdown',
author='khanhct',
author_email='[email protected]',
url='https://github.com/KhanhCT/adapy',
packages=find_packages(),
test_suite='nose.collector',
install_requires=[
'requests',
'base58>=1.0.3',
'ecdsa',
'colander',
'pytz',
'six',
'pyyaml',
],
entry_points={
})