-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
50 lines (49 loc) · 1.52 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
from setuptools import find_packages, setup
setup(
name="enasearch",
version="0.2.0",
author="Berenice Batut",
author_email="[email protected]",
description=("A Python library for interacting with ENA's API"),
license="MIT",
keywords="api api-client ena",
url="https://github.com/bebatut/enasearch",
packages=find_packages(),
entry_points={
'console_scripts': [
'enasearch = enasearch.__main__:main'
]},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"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"
],
extras_require={
'testing': ["pytest"],
},
setup_requires=['pytest-runner'],
tests_require=['pytest'],
install_requires=[
'requests',
'Click',
'flake8',
'xmltodict',
'biopython',
'dicttoxml',
'codecov',
'pytest-cov',
'Sphinx',
'sphinx_rtd_theme'],
include_package_data=True,
package_data={'enasearch_data': ['enasearch_data/*.p']}
)