-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·28 lines (27 loc) · 995 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
# -*- coding: utf8 -*-
from setuptools import setup
import os
pkgName = 'weakreflist'
setup(
name=pkgName,
version='0.4',
url='http://www.python.org/pypi/' + pkgName,
author='Grégory Salvan',
author_email='[email protected]',
license='LGPL',
description='A WeakList class for storing objects using weak references in a list.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
include_package_data=True,
packages=['weakreflist'],
zip_safe=True,
)