-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 807 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_desc = fh.read()
setup(
name='colouringIDLE',
version='0.1',
description="Using Coloured Text in IDLE",
long_description=long_desc,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords='',
author='Aiyush Gupta',
author_email='[email protected]',
url='ooshimus.com',
license='MIT',
packages=setuptools.find_packages(),
namespace_packages=[],
include_package_data=False,
zip_safe=False,
install_requires=[],
tests_require=[],
entry_points={}
)