-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 1.02 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
from distutils.core import setup
setup(
name='binderspace',
packages=['binderspace'],
version='1.0',
license='mit',
description='a library for finding the space for binding sequences',
author='Vukovic Lab (Payam Kelich)',
author_email='lvukovic@utep.edu', # Type in your E-Mail
url='https://github.com/vukoviclab/BinderSpace', # Provide either the link to your github or to your website
download_url='https://github.com/vukoviclab/BinderSpace/archive/refs/tags/1.0.tar.gz',
keywords=['DNA', 'sequence', 'pca', 't-sne', 'peptide'], # Keywords that define your package best
install_requires=[
'scikit-learn',
'numpy',
'pandas',
'matplotlib',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)