-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 1010 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
import setuptools
with open("README.rst", "r") as fp:
long_description = fp.read()
setuptools.setup(
name = "PyDiatomic",
version = "0.3.0",
author = "Stephen Gibson",
author_email = "[email protected]",
description='A Python package to solve the time-independent coupled-channel Schröinger equation using the Johnson renormalized Numberov method',
long_description = long_description,
long_description_content_type="text/markdown",
url = "https://github.com/stggh/PyDiatomic",
packages = setuptools.find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.10',
],
)