-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
40 lines (38 loc) · 1.4 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
import setuptools
with open('README.md', 'r') as f:
readme = f.read()
setuptools.setup(
name = 'citeurl',
version = '11.5.1',
description = 'an extensible tool to process legal citations in text',
author = 'Simon Raindrum Sherred',
author_email = '[email protected]',
license = 'MIT',
long_description = readme,
long_description_content_type = "text/markdown",
url="https://raindrum.github.io/citeurl",
packages = setuptools.find_packages(),
entry_points = {
'console_scripts': ['citeurl=citeurl.cli:main'],
'markdown.extensions': ['citeurl=citeurl.mdx:CiteURLExtension'],
},
include_package_data = True,
install_requires = ['pyyaml'],
extras_require = {
'web': ['flask', 'gevent'],
'config': ['appdirs'],
'full': ['flask', 'gevent', 'appdirs'],
},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Legal Industry',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: Markdown',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)