-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 962 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 962 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, find_packages
import codecs
import os
VERSION = '0.0.8'
DESCRIPTION = 'Package for the generation of non-polar and stoichiometric surfaces from ionic structures.'
LONG_DESCRIPTION = 'Package for the generation of non-polar and stoichiometric surfaces from ionic structures.'
# Setting up
setup(
name="polycleaver",
version=VERSION,
author="Eric Mates-Torres",
author_email="<eric.mates@uab.cat>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=['pymatgen'],
keywords=['python', 'slab', 'surface', 'miller', 'ionic', 'mineral'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)