-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (34 loc) · 1.09 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
import os
from setuptools import find_packages, setup
if os.path.exists("requirements.txt"):
with open('requirements.txt') as f:
requires = f.read().splitlines()
else:
requires = []
setup(
name="gogstools",
version='0.1.2',
description="GenOuest tools for manipulating Official Gene Sets",
long_description="GenOuest tools for manipulating Official Gene Sets",
author="Anthony Bretaudeau",
author_email="[email protected]",
url="https://github.com/genouest/ogs-tools",
install_requires=requires,
packages=find_packages(),
license='GPLv3',
platforms="Posix; MacOS X; Windows",
entry_points="",
scripts=[
'gff2embl/gff2embl',
'ogs_check/ogs_check',
'ogs_merge/ogs_merge',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.9",
]
)