-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (31 loc) · 1.22 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
########################################################################################################################
__doc__ = \
"""
Pip install file. All the files have this block here, so in PyCharm I can change them en-mass.
"""
__author__ = "Matteo Ferla. [Github](https://github.com/matteoferla)"
__email__ = "[email protected]"
__date__ = "10 July 2020 A.D."
__license__ = "MIT"
__version__ = "1.1.7"
__citation__ = "None."
########################################################################################################################
from setuptools import setup, find_packages
import os
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='michelanglo_api',
version= __version__,
packages=find_packages(),
include_package_data=True,
requires=['requests', 'pandas', 'numpy'],
url='https://github.com/matteoferla/MichelaNGLo-api',
license=__license__,
author=__author__,
author_email=__email__ ,
long_description=long_description,
long_description_content_type='text/markdown',
description='API to interface with Michelanglo'
)