-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 740 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 740 Bytes
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
from setuptools import setup, find_packages
import os
def locate_packages():
packages = ['ngadnap']
for (dirpath, dirnames, _) in os.walk(packages[0]):
for dirname in dirnames:
package = os.path.join(dirpath, dirname).replace(os.sep, ".")
packages.append(package)
return packages
setup(
name="ngadnap",
version="1.0",
packages=locate_packages(),
author="James Boocock",
author_email="james.boocock@otago.ac.nz",
description="Next-generation ancient DNA pipeline",
license="MIT",
zip_safe=False,
url="github.com/smilefreak/NGaDNAP",
entry_points={
'console_scripts': [
'run_ngadnap = ngadnap.pipeline:main',
]
},
use_2to3=True,
)