-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (35 loc) · 1.1 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
import os
from io import open
from setuptools import setup
setup_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(setup_directory, 'README.rst'), encoding='utf-8') as readme_file:
long_description = readme_file.read()
setup(name='aureme',
description='Automatic Reconstruction of Metabolique network',
long_description=long_description,
version='0.5',
url='https://github.com/AuReMe/aureme',
author='Meziane AITE',
author_email='[email protected]',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Audience
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
# Environnement, OS, languages
'Programming Language :: Python :: 3'
],
packages=['aureme'],
install_requires=[
'scipy,
],
entry_points={
'console_scripts': [
'aureme = aureme.__main__:main'
]
},
)