-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
53 lines (42 loc) · 1.5 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
#!/usr/bin/env python
# Standard library modules.
import os
# Third party modules.
from setuptools import setup, find_packages
# Local modules.
import versioneer
# Globals and constants variables.
BASEDIR = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(BASEDIR, "README.md"), "r") as fp:
LONG_DESCRIPTION = fp.read()
PACKAGES = find_packages()
with open(os.path.join(BASEDIR, "requirements.txt"), "r") as fp:
INSTALL_REQUIRES = fp.read().splitlines()
EXTRAS_REQUIRE = {}
CMDCLASS = versioneer.get_cmdclass()
ENTRY_POINTS = {}
setup(
name="pyPENELOPEtools",
version=versioneer.get_version(),
url="https://github.com/pymontecarlo/pypenelopetools",
description="Python interface to facilitate the use of the Monte Carlo code PENELOPE and its main programs",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Philippe T. Pinard",
author_email="philippe.pinard@gmail.com",
license="Apache License, Version 2.0",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
packages=PACKAGES,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
cmdclass=CMDCLASS,
entry_points=ENTRY_POINTS,
)