-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1011 Bytes
/
setup.py
File metadata and controls
41 lines (36 loc) · 1011 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
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = ["argparse"]
test_requirements = ["pytest"]
setup(
name="mpdl",
version="1.0.0",
description="Mondrian Painting Description Language interpreter",
long_description=readme,
url="https://github.com/LeopoldTal/mpdl-py",
author="Leopold de Gaillande",
author_email="leopold.tal.dg@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Interpreters"
],
keywords="mpdl interpreter esoteric esolang",
packages=["mpdl"],
install_requires=requirements,
entry_points={
"console_scripts": [
"mpdl = mpdl.mpdl_console:main"
]
},
test_suite="tests",
setup_requires=["pytest-runner"],
tests_require=test_requirements,
)