-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (31 loc) · 1.15 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
32
33
34
35
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Mar 4 10:32:34 2020
@author: fabian
"""
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'theory.md'), encoding='utf-8') as f:
long_description_in = f.read()
setup(name='promod',
version='0.1.7',
description='A macromolecular complex builder',
long_description=long_description_in,
long_description_content_type='text/markdown',
author='Fabián Robledo, Claudio Díaz',
author_email='[email protected]',
license='MIT',
keywords='bioinformatics structural_bioinformatics protein complex builder modeler',
packages=['builder'],
scripts=['promod', 'promod-tk','scripts/pairpdbs.py', 'scripts/pdbsplit.py'],
install_requieres = ['Biopython'],
url='https://github.com/Fabian-RY/SBI-Python-project',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3',
include_package_data=True)