-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathsetup.py
42 lines (37 loc) · 815 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
38
39
40
41
42
#!/usr/bin/env python
from distutils.core import setup
from catplot import __version__ as version
maintainer = 'Shao-Zheng-Jiang'
maintainer_email = '[email protected]'
author = maintainer
author_email = maintainer_email
description = __doc__
requires = [
'numpy',
]
license = 'LICENSE'
#long_description = file('README.md').read()
name = 'python-vaspy'
packages = [
'catplot',
'scripts',
]
data_files = []
platforms = ['linux']
url = ''
download_url = ''
setup(
author=author,
author_email=author_email,
description=description,
license=license,
# long_description=long_description,
maintainer=maintainer,
name=name,
packages=packages,
data_files=data_files,
platforms=platforms,
url=url,
download_url=download_url,
version=version,
)