-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·35 lines (30 loc) · 1.03 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
#!/usr/bin/env python
"""
Created by: Lee Bergstrand (2018)
Description: Setup for installing pygenprop.
"""
from setuptools import setup
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as readme_file:
long_description = readme_file.read()
setup(name='pygenprop',
version='1.3',
description='A python library for programmatic usage of EBI InterPro Genome Properties.',
url='https://github.com/Micromeda/pygenprop',
author='Lee Bergstrand',
author_email='[email protected]',
license='Apache License 2.0',
packages=['pygenprop'],
install_requires=[
'numpy>=1.16.5',
'Cython>=0.29.13',
'pandas>=1.1.5',
'sqlalchemy>=1.3.23,<=1.4.47',
'scikit-bio>=0.5.5'
],
scripts=['bin/pygenprop'],
zip_safe=True,
long_description=long_description,
long_description_content_type='text/markdown')