-
Notifications
You must be signed in to change notification settings - Fork 75
/
setup.py
40 lines (36 loc) · 1.27 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
import io
import os.path as op
from setuptools import setup
here = op.abspath(op.dirname(__file__))
# Get the long description from the README file
with io.open(op.join(here, 'README.md'), mode='rt', encoding='utf-8') as f:
long_description = f.read()
setup(
name='trackml',
version='3',
description='TrackML utility library',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/LAL/trackml-library',
author='Moritz Kiehn',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=['trackml'],
install_requires=[
'numpy',
'pandas>=0.21.0',
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
)