-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (40 loc) · 1.4 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (40 loc) · 1.4 KB
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
""" panthera setup script"""
from setuptools import setup
def readme():
"""Return the contents of the README.md file."""
with open("README.md") as freadme:
return freadme.read()
def from_requirements():
"Return a list of requirements from a file"
with open("panthera_requirements.txt", "r") as freq:
return freq.read().splitlines()
setup(
author="Lukasz Mentel",
author_email="lmmentel@gmail.com",
description="Package for calculating thermochemistry with anharmonic corrections",
include_package_data=True,
entry_points={
"console_scripts": [
"panthera = panthera.panthera:main",
"plotmode = panthera.cli:plotmode_cli",
"writemodes = panthera.cli:write_modes_cli",
]
},
install_requires=from_requirements(),
license=open("LICENSE.rst").read(),
long_description=readme(),
name="panthera",
packages=["panthera"],
url="https://bitbucket.org/lukaszmentel/panthera/",
version="0.5.2",
classifiers=[
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
],
)