-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
81 lines (61 loc) · 1.45 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
"""A setup.py for exptools."""
from setuptools import setup, find_packages
setup(
name='exptools',
version='0.1.0',
description='Experiment tools',
long_description='Experiment tools for systems projects',
url='https://github.com/hyeontaek/exptools',
author='Hyeontaek Lim',
author_email='[email protected]',
license='Apache',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
],
keywords='experiment research',
packages=find_packages(),
install_requires=[
'aiofiles',
'aionotify',
'asteval',
'base58',
'numexpr', # implicit dependency from numpy
'numpy',
'pandas',
'pyomo',
'pytz',
'termcolor',
'tzlocal',
'websockets',
'yaql',
],
extras_require={
'dev': [
'wheel',
],
'test': [
'pylint',
'pytest',
'pytest-asyncio',
'pytest-cov',
'asynctest',
'tox',
],
},
package_data={},
scripts=[
'bin/exptools-server',
'bin/exptools-client',
'bin/etc',
],
data_files=[
('', ['LICENSE.txt']),
],
entry_points={},
)