-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
37 lines (33 loc) · 1.06 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
from setuptools import setup
with open('README.md', encoding="utf8") as f:
readme = f.read()
MAJOR = 0
MINOR = 21
PATCH = 1
VERSION = '{}.{}.{}'.format(MAJOR, MINOR, PATCH)
DESCRIPTION = 'String validation and sanitization'
# Setting up
setup(
name="py.validator",
version=VERSION,
author="Sanel",
author_email="sanelbgd@hotmail.com",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=readme,
packages=['pyvalidator', 'pyvalidator.utils', 'pyvalidator.utils.Classes'],
install_requires=['typing', 'timestring'],
keywords=['python', 'validation', 'string', 'sanitization', 'validator.js'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
project_urls={
'GitHub': 'https://github.com/theteladras/py.validator'
},
license='MIT'
)