-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (25 loc) · 1.01 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
from setuptools import setup
from evalPM import __version__
with open('README.md') as f:
long_desc = f.read()
setup(
name='evalPM',
version=__version__,
url='https://github.com/db-tu-dresden/evalPM',
author='Jonas Deepe, Lucas Woltmann',
author_email='lucas.woltmann@tu-dresden.de',
py_modules=['evalPM'],
install_requires=['pandas','numpy','matplotlib','tensorflow','scikit-learn','deepsig'],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
description="A framework for creating and evaluating immission models for Particulate Matter",
long_description=long_desc,
long_description_content_type='text/markdown'
)