forked from henniggroup/GASP-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.37 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
36
37
38
#!/usr/bin/env python
import os
import glob
from setuptools import setup, find_packages
module_dir = os.path.dirname(os.path.abspath(__file__))
if __name__ == "__main__":
setup(
name='GASP',
version='0.1',
description='Genetic algorithm for structure and phase prediction',
long_description=open(os.path.join(module_dir, 'README.rst')).read(),
url='https://github.com/henniggroup/GASP-python',
author='Benjamin Revard',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
package_data={},
zip_safe=False,
install_requires=['pymatgen>=4.5.2'],
classifiers=['Programming Language :: Python :: 2.7',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Other/Nonlisted Topic',
'Topic :: Scientific/Engineering'],
test_suite='nose.collector',
tests_require=['nose'],
scripts=glob.glob(os.path.join(module_dir, "gasp", "scripts", "*")),
entry_points={
'console_scripts': ['run_gasp = gasp.scripts.run:main']
}
)