-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (29 loc) · 794 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
27
28
29
30
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import glob
from setuptools import setup
readme = open('README.md').read()
setup(
name='pyacd',
version='0.2.0',
description='python API to EMBOSS ACD files',
long_description=readme,
author='Hervé Ménager',
author_email='[email protected]',
url='https://github.com/hmenager/pyacd.git',
download_url='https://github.com/hmenager/pyacd/tarball/0.1',
packages=['pyacd'],
install_requires=[
'pyparsing==2.1.7',
'ruamel.yaml',
'six'
],
license="BSD",
entry_points={
'console_scripts': ['pyacd=pyacd:main'],
},
tests_require=['nose','nose_parameterized'],
test_suite='nose.collector',
include_package_data=True,
zip_safe=False
)