-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (32 loc) · 954 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
from vaspfermipy import __version__
import io
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
here = os.path.dirname(__file__)
readme_path = os.path.join(here, 'README.rst')
with io.open(readme_path, encoding='utf-8') as readme_file:
long_description = readme_file.read()
def readme():
with open('README.rst') as f:
return (f.read())
setup(name='vaspfermipy',
version='1.0.0',
description='Toolset for Fermi surface calculations',
long_description=long_description,
long_description_content_type='text/x-rst',
keywords='Fermi surface',
url='https://github.com/yw-fang/vaspfermipy',
author='Yue-Wen FANG',
author_email='fyuewen@gmail.com',
license='MIT LICENSE',
packages=['vaspfermipy'],
install_requires=[
],
test_suite='nose.collector',
tests_require=['nose'],
scripts=['vaspfermipy/cli/genk_fs'],
include_package_data=True,
zip_safe=False)