-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (40 loc) · 1.53 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
39
40
41
42
43
44
45
46
from setuptools import setup
from os import path
VERSION = '0.7.1'
PACKAGES = [
'py4pm',
]
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='py4pm',
version=VERSION,
packages=PACKAGES,
include_package_data=True, # include everything in source control
long_description=long_description,
long_description_content_type='text/markdown',
url='https://gricad-gitlab.univ-grenoble-alpes.fr/webersa/py4pm',
install_requires=['pandas', 'xlrd<2', 'matplotlib', 'seaborn'],
python_requires='>=3',
author='Samuël Weber',
author_email='[email protected]',
project_urls={
'Documentation': 'https://webersa.gricad-pages.univ-grenoble-alpes.fr/py4pm/',
'Source': 'https://gricad-gitlab.univ-grenoble-alpes.fr/webersa/py4pm',
},
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Atmospheric Science',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
],
)