-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 744 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 744 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 setuptools
requirements = [
'ruamel.yaml',
'click',
'gimmebio.seqs',
]
setuptools.setup(
name="llps",
version="0.5.4",
url="https://github.com/LongTailBio/large_project_specification",
author="David C. Danko",
author_email="dev@longtailbio.com",
description="A simple specification for large bioinformatics projects.",
packages=setuptools.find_packages(),
package_dir={'llps': 'llps'},
entry_points={
'console_scripts': [
'llps=llps.cli:main',
]
},
install_requires=requirements,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)