-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.19 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
from distutils.core import setup
from setuptools import find_packages
from cedar2ccf import __version__
classifiers = """
Development Status :: 4 - Beta
Environment :: Console
License :: OSI Approved :: GNU General Public License (GPL)
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Operating System :: POSIX :: Linux
""".strip().split('\n')
setup(name='cedar2ccf',
version=__version__,
description='A Python tool to convert CEDAR metadata instances to CCF Biological Structure Ontology (CCF-BSO)',
author='Josef Hardi',
author_email='johardi@stanford.edu',
url='https://github.com/metadatacenter/cedar2ccf',
license='GPL-3.0',
classifiers=classifiers,
install_requires=[
'rdflib==5.0.0',
'stringcase==1.2.0'
],
python_requires='>=3.5, <3.9',
test_suite='nose.collector',
tests_require=['nose'],
packages=find_packages(),
include_package_data=True,
scripts=['bin/cedar2ccf'])