-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 787 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 787 Bytes
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
"""Set up the jab/src/python project"""
from setuptools import setup
setup(
name="jab",
packages=["jab"],
version="0.8.90",
url="https://github.com/jalanb/jab/",
license="MIT License",
author="J Alan Brogan",
author_email="github@al-got-rhythm.net",
description="Just jabs' stuff",
platforms="any",
classifiers=[
"Programming Language :: Python :: 3.7",
"Development Status :: 1 - Planning",
"Natural Language :: English",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Darwin",
],
install_requires=["pysyte"],
tests_require=["pytest"],
extras_require={
"testing": ["pytest"],
},
)