-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 1021 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
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open("README.md", encoding="utf-8") as f:
readme = f.read()
VERSION = '0.0.4'
DESCRIPTION = 'Validator for VK URLs.'
# Setting up
setup(
name="vk_urls_validator",
version=VERSION,
author="Emir Takhaviev",
author_email="[email protected]",
description=DESCRIPTION,
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/Wiped-Out/vk_urls_validator",
download_url="https://github.com/Wiped-Out/vk_urls_validator/releases/latest",
packages=find_packages(exclude=["tests*"]),
keywords=['python', 'vk urls', 'validation'],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)