forked from NationalGenomicsInfrastructure/charon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 666 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
import os
from setuptools import setup
os.system("pandoc -o README.txt -f markdown -t rst README.md")
setup(name='charon',
version='14.7',
description='Database for IGN projects and samples, with RESTful interface.',
license='MIT',
author='Per Kraulis',
author_email='per.kraulis@scilifelab.se',
url='https://github.com/pekrau/charon',
packages=['charon'],
package_dir={'charon': 'charon'},
include_package_data=True,
install_requires=['tornado>=3.2',
'couchdb>=0.8',
'pyyaml>=3.10',
'requests>=2.2'],
)