-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 847 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 847 Bytes
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
from setuptools import setup
setup(
name='ProcarPy',
version='1.0b0',
author='Hilal BALOUT',
author_email='hilal_balout@hotmail.com',
package_dir={'ProcarPy': 'src'},
packages=['ProcarPy'],
url='https://github.com/K4ys4r/ProcarPy',
license=open('LICENSE.txt').read(),
description='PROCAR VASP File Analysis',
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
install_requires=[
'ProcarPy',
'numpy',
'matplotlib',
],
)