This repository was archived by the owner on Mar 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (50 loc) · 1.78 KB
/
setup.py
File metadata and controls
52 lines (50 loc) · 1.78 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='pyopm',
version='0.0.4',
author='Rodney Meredith McKay',
# author_email='',
description='Object Pattern Matching for Python 3',
long_description=long_description,
long_description_content_type='text/markdown',
project_urls={
'GitHub': 'https://github.com/ep12/PyOPM',
'Documentation': 'https://github.com/ep12/PyOPM/wiki',
},
packages=setuptools.find_packages(),
license='GNU LGPL v3',
keywords=[
'object patterns',
'object pattern matching',
'case statement',
'match statement',
'case', 'match',
'object destructuring',
# 'overloading',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
# 'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Typing :: Typed',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
python_requires='>=3.6',
)