forked from pcraciunoiu/py-wikimarkup
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
27 lines (24 loc) · 809 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('requirements.txt') as fd:
reqs = [row.strip() for row in fd]
setup(
name='py-wikimarkup',
version='2.3.0',
packages=find_packages(),
description='A basic MediaWiki markup parser.',
long_description=open('README.rst').read(),
author='David Cramer',
author_email='dcramer@gmail.com',
url='http://www.github.com/dgilman/py-wikimarkup/',
classifiers=[
'Development Status :: 6 - Mature',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3 :: Only',
],
python_requires='>=3.7',
zip_safe=False,
include_package_data=True,
install_requires=reqs,
package_data = { '': ['README.rst'] },
)