-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 999 Bytes
/
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
from setuptools import setup
import versioneer
requirements = [
# package requirements go here
]
setup(
name='snakeobjects',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Snakeobjects, an object-oriented workflow management system based on snakemake.",
license="MIT",
author="Ivan Iossifov",
author_email='[email protected]',
url='https://github.com/iossifovlab/snakeobjects',
packages=['snakeobjects'],
package_data={
"snakeobjects": ["jobscript.sh","header.snakefile"],
},
include_package_data=True,
scripts = [],
entry_points={
'console_scripts': [
'sobjects=snakeobjects.cli:cli'
]
},
install_requires=requirements,
keywords=['snakeobjects','snakemake','workflow managment'],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)