-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.08 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
from setuptools import setup, find_packages
import os
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join(path, filename))
return paths
with open('README.md') as f:
long_description = f.read()
setup(
name="bridgernadesigner",
version='0.1.0',
description='Software package to design bridge RNAs as described by Durrant & Perry et al.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/hsulab-arc/BridgeRNADesigner',
author="Matt Durrant",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
package_data={
"bridgernadesigner": package_files("data/"), #+ package_files("snakemake/")
},
include_package_data=True,
install_requires=[
'biopython',
'click==7.0'
],
zip_safe=False,
entry_points = {
'console_scripts': [
'brna-design = bridgernadesigner.main:cli'
]
}
)