-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 751 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 751 Bytes
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
from setuptools import setup, find_packages
from checkuser import __version__, __author__, __email__
PACKAGES = find_packages()
REQUIREMENTS = open('requirements.txt').read().splitlines()
VERSION = __version__
DESCRIPTION = open('README.md').read()
AUTHOR = __author__
AUTHOR_EMAIL = __email__
URL = 'https://github.com/ruck18/CheckUser'
LICENSE = 'MIT'
setup(name='CheckerUser',
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=PACKAGES,
include_package_data=True,
install_requires=REQUIREMENTS,
entry_points={
'console_scripts': [
'checkuser = checkuser.__main__:main',
],
})