-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 931 Bytes
/
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
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r") as f:
README = f.read()
setup(
name="cursebox-lib",
packages=find_packages(),
version="1.0.2",
description="Curses made simple",
long_description=README,
long_description_content_type="text/markdown",
author="Tenchi",
author_email="[email protected]",
url="https://github.com/Tenchi2xh/cursebox",
project_urls={
"Documentation": "https://cursebox.readthedocs.io/en/latest/"
},
keywords=["terminal", "termbox", "curses"],
classifiers=[
"Development Status :: 4 - Beta",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
install_requires=["six"],
extras_require={
"test": ["pytest"]
}
)