-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.31 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.31 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
from distutils.core import setup
try:
with open('README.rst') as file:
long_description = file.read()
except IOError:
long_description = "missing"
setup(
name='medic',
version='2.4.1',
license='GNU GPL v3',
author='Florian Leitner',
author_email='florian.leitner@gmail.com',
url='https://github.com/fnl/medic',
description='A command line tool to manage a PubMed DB mirror.',
long_description=long_description,
install_requires=[
'sqlalchemy >= 0.8',
],
py_modules=['medic'],
packages=[
'medic',
],
package_dir={
'': 'src',
},
scripts=[
'scripts/medic',
],
data_files=[
('share/man/man1', ['medic.1']),
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing',
'Topic :: Text Processing :: Linguistic',
],
)