-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (33 loc) · 1021 Bytes
/
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
36
37
#!/usr/bin/env python
import os
try:
import pkg_resources
from setuptools import setup, Command, find_packages
_have_setuptools = True
except:
from distutils.core import setup, Command
_have_setuptools = False
setup_kwargs = {}
setup_kwargs[ 'setup_requires' ] = [ 'numpy==1.9.2', 'cython==0.20.1' ]
setup_kwargs[ 'install_requires' ] = [ 'numpy==1.9.2',
'cython==0.20.1',
'matplotlib==1.4.3',
'loprop==0.1.8',
'applequist==0.1',
'ipython==3.0',
]
setup(name="moltools",
version="v1.2",
packages = find_packages(),
#package_dir = { '' : 'moltools' },
scripts=[ "moltools/pdbreader.py", ],
author="Ignat Harczuk",
author_email="[email protected]",
license = 'MIT',
description = 'Running point dipole calculations on chemical systems',
platforms = 'Linux',
maintainer = 'Ignat Harczuk',
maintainer_email = '[email protected]',
url = 'https://github.org/fishstamp82/moltools.git',
**setup_kwargs
)