-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (34 loc) · 1.12 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
41
42
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
from os import path
with open('README.md') as readme_file:
readme = readme_file.read()
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'requirements.txt')) as f:
requirements = f.read().split()
setup_requirements = [ ]
test_requirements = [ ]
setup(
author="Simon Ball",
author_email='[email protected]',
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description="A strain analysis tool written in Pythong",
install_requires=requirements,
long_description=readme,
keywords='strain analysis',
name='pyedna',
packages=find_packages(include=['pyedna*']),
package_data={"":["template_report.docx"]},
include_package_data=True,
url='https://github.com/simon-ball/PyEdna',
version='1.1.0',
zip_safe=False,
)