-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 921 Bytes
/
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
from setuptools import setup, find_packages
from distutils.util import convert_path
long_description = open('README.md', 'r').read()
# get version:
ns = {}
ver_path = convert_path('ontolopy/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), ns)
setup(name='ontolopy',
version=ns['__version__'],
install_requires=[
'pandas',
'numpy',
'validators',
],
description='Ontolopy is a package for working with ontology (.obo) files from Python.',
long_description_content_type='text/markdown',
long_description=long_description,
packages=find_packages(),
url='https://github.com/NatalieThurlby/ontolopy',
author='Natalie Thurlby',
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires='>=3.6',
author_email='[email protected]',
license='MIT')