-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1 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
"""Set up the cde project"""
from setuptools import setup
setup(
name="cde",
version="0.7.38",
url="https://github.com/jalanb/cde",
license="MIT License",
author="jalanb",
author_email="github@al-got-rhythm.net",
description="cde extends cd",
packages=["cde"],
platforms="Unix",
classifiers=[
"Programming Language :: Python :: 3.7",
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Topic :: System :: Shells",
],
install_requires=[
"boltons",
"pysyte>=0.7.50",
],
tests_require=[
"pytest",
"pytest-cov",
"requests_mock",
],
extras_require={
"docs": ["Sphinx"],
"testing": ["pytest"],
},
scripts=[
"bin/cde",
],
)