-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 794 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 794 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
import setuptools
setuptools.setup(
name = 'moi',
version = "1.0.0",
author = "Constantin Yves Lenoir",
author_email = "constantinlenoir@gmail.com",
description = 'An abstract rich text editor.',
long_description= ('A text editor'
' which is abstract because of its command line interface'
' and rich because it can attach any format to a given string.'),
long_description_content_type = 'text/txt',
url = 'https://github.com/ConstantinLenoir/moi',
packages = setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU GPL",
"Operating System :: OS Independent",
],
install_requires=[],
python_requires='>=3.0',
license = 'GNU GPL'
)