-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·42 lines (34 loc) · 1.35 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
import os
def version():
setup_dir = os.path.dirname(os.path.realpath(__file__))
version_file = open(os.path.join(setup_dir, 'unitem', 'VERSION'))
return version_file.readline().strip()
if __name__ == '__main__':
dirName = os.path.dirname(__file__)
if dirName and os.getcwd() != dirName:
os.chdir(dirName)
setup(
name='unitem',
version=version(),
author='Donovan Parks',
author_email='[email protected]',
maintainer='Donovan Parks',
maintainer_email='[email protected]',
packages=find_packages(),
scripts=['bin/unitem'],
package_data={'unitem': ['VERSION', '../markers/*']},
url='http://pypi.python.org/pypi/unitem/',
license='GPLv3',
description='Ensemble binning strategies for combining the output of multiple binning methods.',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
install_requires=["numpy>=1.24", "svgwrite>=1.1.9"],
)