forked from brather1ng/RePoE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 770 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
from setuptools import find_packages, setup
# Package meta-data.
NAME = "RePoE"
DESCRIPTION = "Repository of Path of Exile resources for tool developers"
URL = "https://github.com/brather1ng/RePoE"
EMAIL = ""
AUTHOR = "brather1ng"
REQUIRES_PYTHON = ">=3.6.0"
VERSION = "1.0.0"
# What packages are required for this module to be executed?
REQUIRED = ["PyPoE", "pre-commit"]
# What packages are optional?
EXTRAS = {
# 'fancy feature': ['django'],
}
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
py_modules=find_packages(),
install_requires=REQUIRED,
extras_require=EXTRAS,
include_package_data=True,
license="proprietary",
)