-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
53 lines (46 loc) · 1.37 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
51
52
#!/usr/bin/env python3
from setuptools import setup, find_packages
import os
import subprocess
directory = os.path.dirname(os.path.abspath(__file__))
# long_description
readme_path = os.path.join(directory, 'README.md')
with open(readme_path) as read_file:
long_description = read_file.read()
setup(
name='dipper',
version='1.0.0',
author='The Monarch Initiative',
author_email='[email protected]',
url='https://github.com/monarch-initiative/dipper',
description='Library for transforming data from open genomic databases to RDF',
packages=find_packages(),
license='BSD',
install_requires=[
'rdflib',
'isodate',
'roman',
'pyyaml',
'requests',
'ontobio',
'psycopg2',
'python-docx',
'pysftp',
'beautifulsoup4',
'intermine',
'numpy',
'pandas',
'ontobio',
],
include_package_data=True,
keywords='ontology graph obo owl sparql rdf',
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization'
],
scripts=['./dipper-etl.py']
)