-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
48 lines (41 loc) · 1.42 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def _read_from_requirements():
with open('requirements.txt') as f:
return f.read().splitlines()
def _load_description():
with open("README.md", "r") as fh:
return fh.read()
setup_options = dict(
name='factordb-python',
version='1.3.0',
description='The FactorDB client library with Python',
long_description=_load_description(),
long_description_content_type='text/markdown',
author='Ryosuke SATO (@ryosan-470)',
author_email='[email protected]',
url='https://github.com/ryosan-470/factordb-python',
py_modules=['factordb'],
packages=find_packages(),
entry_points={
'console_scripts': 'factordb = factordb.cli:main'
},
install_requires=_read_from_requirements(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
license="MIT License",
classifiers=(
"Development Status :: 4 - Beta",
"Environment :: Console",
"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",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities",
),
)
setup(**setup_options)