-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 972 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
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name="regularize",
version="0.0.7",
author="George Psarakis",
description="Regular Expression Builder",
long_description=readme,
long_description_content_type="text/markdown",
package_dir={"": "."},
packages=find_packages(),
zip_safe=False,
install_requires=[],
extras_require={
"dev": [
"pytest==6.1.0",
"flake8==3.8.4",
"pytest-cov==2.10.1"
]
},
url="https://github.com/georgepsarakis/regularize",
license="MIT",
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
)