-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 1.2 KB
/
setup.py
File metadata and controls
35 lines (34 loc) · 1.2 KB
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
from setuptools import setup
setup (
name='random2',
version='1.0.3.dev0',
author = "PSF",
description = "Python 3 compatible Python 2 `random` Module.",
long_description = (
open('CHANGES.rst').read()
+ '\n\n' +
open('README.rst').read()
),
license = "Python 2.1.1",
keywords = "roman",
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'License :: OSI Approved :: Python Software Foundation License',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: OS Independent'],
url = 'http://pypi.python.org/pypi/random2',
package_dir={"": "src"},
py_modules=['random2'],
include_package_data = True,
test_suite = 'tests.test_suite',
zip_safe = True,
)