-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 922 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
from setuptools import setup
setup(
name='yyc',
version='1.0',
author='Haoling Zhang, Zhi Ping',
author_email='[email protected]',
maintainer='BGI-Research',
url='https://github.com/ntpz870817/DNA-storage-YYC',
description='Yin-Yang Code implementation',
long_description='Yin-Yang Code is a DNA storage codec algorithm developed by BGI-research. ' +
'Briefly, it can transcode two binary sequences into one DNA sequence. ' +
'This algorithm can help to achieve a high-density, high-feasibility DNA storage.',
packages=['yyc', 'yyc/utils'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
'Topic :: Scientific/Engineering'
]
)