-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (31 loc) · 1.17 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
37
38
39
# coding: utf-8
from setuptools import setup, find_packages
def README():
with open('README.rst') as f:
return f.read()
setup(
name='backports.weakref',
description="Backport of new features in Python's weakref module",
long_description=README(),
url='https://github.com/pjdelport/backports.weakref',
author='Pi Delport',
author_email='[email protected]',
package_dir={'': 'src'},
packages=find_packages('src'),
setup_requires=['setuptools_scm'],
use_scm_version=True,
license='Python Software Foundation License',
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)