-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.19 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
#!/usr/bin/env python
from setuptools import setup
import reflectivipy
packages = ["reflectivipy", "reflectivipy.wrappers"]
setup(
name="reflectivipy",
version=reflectivipy.__version__,
description=(
"A Python Implementation of the Reflectivity API from " "the Pharo language"
),
long_description=open("README.rst").read(),
keywords="object-centric partial-behavior-reflection metaprogramming",
url="https://github.com/StevenCostiou/reflectivipy",
author="Steven Costiou",
author_email="[email protected]",
packages=packages,
package_data={"": ["README.rst", "LICENCE"]},
include_package_data=True,
tests_require=["pytest"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Debuggers",
],
)