-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (40 loc) · 1.25 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
39
40
41
42
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as fd:
long_description = fd.read()
setup(
name='python-vasp',
version='0.2.0',
author='Alejandro Gallo',
author_email='[email protected]',
license='GPLv3',
install_requires=[
],
classifiers=[
'Environment :: Console',
'Environment :: Console :: Curses',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
description='Yet another vasp parser, but unit tested',
long_description=long_description,
keywords=[
'vasp', 'electronic-structure', 'quantum', 'physics'
],
packages=[
'vasp',
'vasp.parser'
],
platforms=['linux', 'osx'],
)