-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 1.74 KB
/
setup.py
File metadata and controls
53 lines (48 loc) · 1.74 KB
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
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup file for OrtSuite.
This file was generated with PyScaffold 3.1.
PyScaffold helps you to put up the scaffold of your new Python project.
Learn more under: https://pyscaffold.org/
"""
import sys
from pkg_resources import require, VersionConflict
from setuptools import setup, find_packages
try:
require('setuptools>=38.3')
except VersionConflict:
print("Error: version of setuptools is too old (<38.3)!")
sys.exit(1)
with open('README.md') as f:
long_description = f.read()
if __name__ == "__main__":
setup(#use_pyscaffold=True,
name='OrtSuite',
version='0.01',
description='Prediction of putative microbial interactions.',
licence="GNU-LPL", # Check license
long_description=long_description,
author='Microbial Systems Data Science group',
author_email='msds@ufz.de',
url='',
# Commands
scripts=['src/aux.py', 'src/diamond_mp.py','src/MultipleRequests.py'],
# classifiers=[],
packages=find_packages(),
install_requires=[],
entry_points={
'console_scripts':
['create_project=src.create_project:run',
'delete_project=src.delete_project:run',
'relaxed_search=src.relaxed_search:run',
'restrictive_search=src.restrictive_search:run',
'check_projects=src.check_projects:run',
'annotation=src.annotation:run',
'create_db=src.create_db:run',
'download_kos=src.download_kos:run'
],
},
# Data - see this better
# package_data=[]
)