forked from materialsproject/MPenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.61 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
#!/usr/bin/env python
__author__ = "Anubhav Jain"
__copyright__ = "Copyright 2013, The Materials Project"
__version__ = "0.1"
__maintainer__ = "Anubhav Jain"
__email__ = "[email protected]"
__date__ = "Jan 9, 2013"
from setuptools import setup, find_packages
import os
import multiprocessing, logging # AJ: for some reason this is needed to not have "python setup.py test" freak out
module_dir = os.path.dirname(os.path.abspath(__file__))
if __name__ == "__main__":
setup(name='MPenv',
version='0.1',
description='Materials Project environment creation',
long_description=open(os.path.join(module_dir, 'README.rst')).read(),
url='https://github.com/materialsproject/MPenv',
author='Anubhav Jain',
author_email='[email protected]',
license='modified BSD',
packages=find_packages(),
zip_safe=False,
install_requires=['pyyaml>=3.1.0', 'pymongo>=2.4.2,<3', "virtualenv>=1.9.1"],
classifiers=["Programming Language :: Python :: 2.7", "Development Status :: 4 - Beta",
"Intended Audience :: Science/Research", "Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent", "Topic :: Other/Nonlisted Topic",
"Topic :: Scientific/Engineering"],
test_suite='nose.collector',
tests_require=['nose'],
scripts=[os.path.join(os.path.join(module_dir, "MPenv/scripts", f)) for f in
os.listdir(os.path.join(module_dir, "MPenv/scripts"))])