forked from alphatwirl/alphatwirl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.35 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
47
from setuptools import setup, find_packages
import versioneer
import os
import io
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='alphatwirl',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A Python library for summarizing event data',
long_description=long_description,
long_description_content_type='text/markdown',
author='Tai Sakuma',
author_email='[email protected]',
url='https://github.com/alphatwirl/alphatwirl',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
packages=find_packages(exclude=['docs', 'images', 'tests']),
install_requires=[
'numpy',
'atpbar>=1.0.8',
'mantichora>=0.10.0',
],
extras_require={
'tests': [
'pytest>-5.4',
'pytest-cov>=2.8',
'pytest-console-scripts>=0.2',
],
'doc': [
'Sphinx>=1.8.4',
'sphinx_rtd_theme>=0.4',
'recommonmark>=0.6',
],
}
)