-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (34 loc) · 1.29 KB
/
setup.py
File metadata and controls
41 lines (34 loc) · 1.29 KB
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
33
34
35
36
37
38
39
40
41
from distutils.core import setup
setup(
name='PyProt',
description='Tools for Protein structure file manipulation',
version='1.0.4',
author='Sebastian Raschka',
author_email='se.raschka@gmail.com',
url='https://github.com/rasbt/pyprot',
packages=['pyprot'],
package_dir={'pyprot': 'pyprot'},
license='GPLv3',
keywords='proteins PDB MOL2',
platforms='any',
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development :: Libraries :: Python Modules',
],
long_description="""
PyProt is a Python package for working with protein structure files formats.
It comes with a collection of ready-to-use scripts for the most common file
operations and protein analyses.
For more details and examples please see the package documentation.
The original project is hosted and developed at: https://github.com/rasbt/pyprot
Contact
=============
If you have any questions or comments about PyProt, please feel free to contact me via
email: se.raschka@gmail.com
or twitter: https://twitter.com/rasbt
"""
)