-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·59 lines (53 loc) · 1.33 KB
/
setup.py
File metadata and controls
executable file
·59 lines (53 loc) · 1.33 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
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
from setuptools import find_packages, setup
project = "pluscal"
version = "0.4.2"
url = "https://github.com/jessemyers/pluscal"
long_description = f"See {url}"
try:
with open("README.md") as file_:
long_description = file_.read()
except IOError:
pass
setup(
name=project,
version=version,
license="Apache 2.0",
description="PlusCal AST and builder in Python",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jesse Myers",
url=url,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
python_requires=">=3.7",
keywords="PlusCal TLA+",
classifiers=[
"Programming Language :: Python :: 3.7",
],
install_requires=[
],
extras_require=dict(
dist=[
"bumpversion>=0.5.3",
"pip>=19.0.3",
"setuptools>=40.8.0",
"twine>=1.13.0",
"wheel>=0.33.1",
],
lint=[
"flake8>=3.7.7",
"flake8-isort>=2.7.0",
"flake8-print>=3.1.0",
],
test=[
"coverage>=4.5.3",
"nose>=1.3.7",
"PyHamcrest>=1.9.0",
],
typehinting=[
"mypy>=0.670.0",
],
),
)