-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (41 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
import os
import sys
from setuptools import setup, find_packages
sys.path.append('expstock')
__version__ = '0.2'
__author__ = 'Chie Hayashida'
__author_email__ = '[email protected]'
__classifiers__ = (
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: User Interfaces')
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
readme = f.read()
with open('requirements.txt') as f:
requires = f.read().splitlines()
with open('test_requirements.txt') as f:
tests_require= f.read().splitlines()
setup(
name='expstock',
version=__version__,
author=__author__,
author_email=__author_email__,
url='https://github.com/chie8842/expstock',
description='Stock your experiments',
scripts=['scripts/expstock-server'],
long_description=readme,
test_suite='test',
tests_require=tests_require,
classifiers=__classifiers__,
packages=find_packages(),
include_package_data=True,
install_requires=requires,
license='MIT')