-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·34 lines (33 loc) · 1.13 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
from setuptools import setup, find_packages
import easy_prime
try:
with open("README.md", "r") as fh:
long_description = fh.read()
except:
long_description = ""
setup(
name='easy_prime',
version=str(easy_prime.__version__),
description="Prime editor gRNA design tool",
author="Yichao Li",
author_email='[email protected]',
url='https://github.com/YichaoOU/easy_prime',
packages=find_packages(),
license='LICENSE',
scripts=['bin/easy_prime','bin/easy_prime_vis'],
package_data={'': ["README.md","model/xgb_model_final.py"]}, ## has to be .py, otherwise conda-build won't include it
include_package_data=True,
long_description=long_description,
long_description_content_type='text/markdown' ,
keywords='prime editor',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Information Analysis',
'Operating System :: Unix',
'Natural Language :: English',
"Programming Language :: Python :: 3"
]
)