-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 835 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 835 Bytes
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
import os
from setuptools import setup
version = '0.2'
description = "A command-line tool for identification and Extraction of Variant Attributes."
cur_dir = os.path.dirname(__file__)
requirements = open(os.path.join(cur_dir, 'REQUIREMENTS')).read()
try:
long_description = open(os.path.join(cur_dir, 'README.rst')).read()
except:
long_description = description
setup(
name = "iEVA",
version = version,
url = 'https://github.com/Matteodigg/iEVA',
license = 'MIT',
description = description,
long_description = long_description,
author = 'Matteo Di Giovannantonio & Mario Urtis',
author_email = 'matteodeg@gmail.com',
packages = ['iEVA'],
install_requires = requirements,
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
],
)