forked from SynBioDex/SBOL-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
74 lines (70 loc) · 3.28 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from setuptools import setup
setup(name='sbol-utilities',
description='SBOL utilities',
long_description='SBOL-utilities is a collection of scripts and functions for manipulating SBOL 3 data that '
'can be imported as packages or run from the command line.',
long_description_content_type='text/markdown',
url='https://github.com/SynBioDex/SBOL-utilities',
license='MIT License',
version='1.0a17',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
# What does your project relate to?
keywords='synthetic biology',
install_requires=[
'sbol3>=1.1',
'sbol2>=1.4',
'rdflib>=6.2',
'biopython',
'graphviz',
'tyto>=1.4',
'openpyxl',
'requests',
'sbol_factory>=1.1'
],
extras_require={ # requirements for development
'dev': ['pytest', 'interrogate']
},
entry_points={
'console_scripts': ['excel-to-sbol=sbol_utilities.excel_to_sbol:main',
'graph-sbol=sbol_utilities.graph_sbol:main',
'sbol-expand-derivations=sbol_utilities.expand_combinatorial_derivations:main',
'sbol-calculate-sequences=sbol_utilities.calculate_sequences:main',
'sbol-calculate-complexity=sbol_utilities.calculate_complexity_scores:main',
'sbol-converter=sbol_utilities.conversion:main',
'sbol2-to-sbol3=sbol_utilities.conversion:sbol2to3',
'sbol3-to-sbol2=sbol_utilities.conversion:sbol3to2',
'sbol-to-genbank=sbol_utilities.conversion:sbol2genbank',
'sbol-to-fasta=sbol_utilities.conversion:sbol2fasta',
'genbank-to-sbol=sbol_utilities.conversion:genbank2sbol',
'fasta-to-sbol=sbol_utilities.conversion:fasta2sbol',
'sbol-diff=sbol_utilities.sbol_diff:main']
},
packages=['sbol_utilities'],
package_data={
'sbol_utilities': [
'gb2so.csv',
'sbolgraph-standalone.js',
'so2gb.csv',
],
},
include_package_data=True
)