-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (25 loc) · 1.19 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
#!/usr/bin/env python
import setuptools
clib = setuptools.Extension('paftol.clib',
sources = ['src/clib.c'],
include_dirs = [],
library_dirs = [],
libraries = [],
extra_compile_args = ['-Wall', '-pedantic', '-Wno-long-long', '-fPIC'],
extra_link_args = ['-fPIC'])
paftolScripts = ['paftools']
paftolDescription = 'packages and tools for the Plant and Fungal Trees of Life (PAFTOL) project'
paftolUrl = 'https://www.paftol.org/'
paftolEntryPoints = {'console_scripts': ['paftools = paftol.cli:paftoolsMain']}
setuptools.setup(name='paftol',
version='0.0.1',
packages=setuptools.find_packages(),
author='PAFTOL Bioinformatics Team',
author_email='info@paftol.org',
description=paftolDescription,
keywords='bioinformatics phylogeny',
url=paftolUrl,
entry_points=paftolEntryPoints,
ext_modules=[clib],
test_suite='paftol.tests')
# could also include long_description, download_url, classifiers, etc.