-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.06 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.06 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
42
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst', 'r', encoding='utf-8') as file:
readme = file.read()
setup(
name = 'PDIpy',
package_dir = {'pdi':'pdipy'},
packages = find_packages(),
package_data = {
'pdipy': ['parameters/*'],
'test': ['*']
},
version = '0.0.5',
license = 'MIT',
description = "Simulate Photodynamic Inactivation (PDI) from a kinetics model of membrane oxidation.",
long_description = readme,
author = 'Andrew Freiburger',
author_email = 'andrewfreiburger@gmail.com',
url = 'https://github.com/freiburgermsu/PDIpy',
keywords = [
'antibacterial',
'photodynamic',
'biophysics',
'computational',
'biology',
'medicine',
'PDI',
'antibiotics'
],
install_requires = [
'matplotlib',
'tellurium',
'scipy',
'pandas',
'sigfig',
'hillfit',
'chemw',
'numpy'
]
)