-
Notifications
You must be signed in to change notification settings - Fork 0
/
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 setup, find_packages
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
# Set the library's long description to the repo's README.md
with open('README.md', 'r') as readme_file:
readme = readme_file.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
requirements = required
setup(
name='abstract_python_exchange_rates',
version='1.0.1',
author='Benjamin Bouchet',
author_email='[email protected]',
description="AbstractExchangeRates - Wrapper to quickly start using the powerful AbstractAPI's exchange rates service in your projects.",
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/abstractapi/python-exchange-rates',
packages=find_packages(),
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
)