-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 938 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
24
25
26
from setuptools import setup, find_packages
from pathlib import Path
setup(
name='cubicsym',
version='0.1',
scripts=[p for p in map(str,Path("scripts/").rglob("*")) if Path(p).is_file() if "__pycache__" not in str(p) and "__init__.py" not in str(p)] + ["scripts/make_symmdef_file.pl"],
packages=find_packages(where=".", exclude=("tests",)),
#packages=['cubicsym'],
package_data={'cubicsym' :['data/I/*', 'data/O/*', 'data/T/*']},
url='https://github.com/Andre-lab/cubicsym',
license='MIT',
author='mads',
author_email='[email protected]',
description='Tools for using cubic symmetry with Rosetta and EvoDOCK',
install_requires = [
"symmetryhandler @ git+https://github.com/Andre-lab/symmetryhandler",
"requests",
"numpy",
"pandas",
"biopython",
"pytest",
"scipy",
"pyyaml"
],
)