-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
48 lines (44 loc) · 1.18 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 setuptools import find_packages, setup
DISTNAME = "plymi"
LICENSE = "MIT"
AUTHOR = "Ryan Soklaski"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/rsokl/Learning_Python"
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
INSTALL_REQUIRES = []
DESCRIPTION = "Tooling for upgrading PLYMI source material for jupytext"
setup(
name=DISTNAME,
package_dir={"": "src"},
packages=find_packages(
where="src",
exclude=[
"tests",
"tests.*",
"Python",
"Python.*",
"docs",
"docs.*",
"docs_backup",
"docs_backup.*",
],
),
version="1.0",
license=LICENSE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
classifiers=CLASSIFIERS,
description=DESCRIPTION,
install_requires=INSTALL_REQUIRES,
url=URL,
python_requires=">=3.6",
)