-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
43 lines (41 loc) · 1.5 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
40
41
42
43
from setuptools import setup
import os
version = '1.0'
github_url = 'https://github.com/johnsyweb/python_sparse_list'
paj = 'Pete Johns'
paj_email = 'paj+pypi@johnsy.com'
setup(
name='sparse_list',
py_modules=['sparse_list'],
version=version,
description='A list where most values will be None (or some other default)',
author=paj,
author_email=paj_email,
maintainer=paj,
maintainer_email=paj_email,
url=github_url,
download_url='{}/tarball/{}'.format(github_url, version),
keywords=['sparse', 'list', 'container', 'iterable'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
long_description=(''.join(
[open(f).read() for f in ('README.rst',) if os.path.isfile(f)]
)),
license='MIT'
)