-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (53 loc) · 1.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
from setuptools import setup
__author__ = "Jason Eu"
__license__ = "MIT, with atztogo/niggli LICENSE"
about = {}
with open('pniggli/version.py') as f:
exec(f.read(), about)
setup(
name = 'pniggli',
# Remenber change version in ababe.cmdline.runabalib.exec_from_cmdline()
version = about['__version__'],
description='Structures of Alloys Generation And Recognition',
long_description=open('README.rst').read(),
author='Jason Eu',
author_email='[email protected]',
license=__license__,
include_package_data=True,
package_data={},
keywords = 'niggli material strucutre cell',
install_requires=[
"numpy",
"spglib",
],
extras_require={
'dev': [
'pip',
'pytest',
'pytest-cov',
'twine',
'ipython',
],
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 2.7",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English"],
entry_points={
'console_scripts': [
'pniggli = pniggli.cmd:cli',
],
},
packages=[
'pniggli',
],
test_suite='test',
)