-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 844 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 844 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
29
30
from setuptools import setup, find_packages
from primerize.__init__ import __version__
setup(
name='primerize',
description='PCR Assembly Primer Design',
keywords='primerize PCR assembly misprime',
version=__version__,
author='Siqi Tian, Rhiju Das',
author_email='rhiju@stanford.edu',
url='https://github.com/ribokit/Primerize/',
license='MIT',
packages=find_packages(),
install_requires=open('requirements.txt', 'r').readlines(),
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
),
zip_safe=True
)