-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
48 lines (41 loc) · 1.54 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
from __future__ import division, print_function, absolute_import
import io
import os
from setuptools import setup, find_packages
from glob import glob
from abiconfig.core import release
# Get the long description from the relevant file
with io.open('README.md', encoding='utf-8') as f:
long_description = f.read()
platforms = ['Linux', 'darwin']
keywords = ["ABINIT", "ab initio", "first principles", "configuration files"]
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GPL License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules"
],
setup(name='abiconfig',
version=release.__version__,
description="Configuration files to compile ABINIT on supercomputers.",
long_description=long_description,
author="Matteo Giantomassi",
author_email='gmatteo@gmail.com',
url='https://github.com/gmatteo/abiconfig',
license='GPL',
platforms=platforms,
classifiers=classifiers,
keywords=keywords,
packages=find_packages(),
scripts=glob(os.path.join("abiconfig", "scripts", "*.py")),
package_data={
"abiconfig.core": ["*.conf", "*.ac"],
"abiconfig.clusters": ["*.ac"],
},
)