-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·40 lines (34 loc) · 1.33 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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
README = f.read()
with open('VERSION', 'r', encoding='utf-8') as f:
VERSION = f.read()
def import_requirements():
with open('requirements.txt', 'r', encoding='utf-8') as f:
content = f.readlines()
# you may also want to remove whitespace characters like `\n` at the end of each line
content = [x.strip() for x in content]
return content
setup(
name='ebi-ols-client',
version=VERSION,
description='OLS - REST Api Client - python library',
long_description=README,
long_description_content_type='text/markdown',
author='Marc Chakiachvili',
author_email='[email protected]',
url='https://github.com/Ensembl/ols-client',
license='Apache 2.0',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=import_requirements(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)