-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (36 loc) · 1.58 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
38
39
40
41
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright © Jean-Sébastien Gosselin
# Licensed under the terms of the MIT License
# (https://github.com/jnsebgosselin/appconfigs)
# -----------------------------------------------------------------------------
"""Installation script """
import setuptools
from setuptools import setup
from appconfigs import __version__, __project_url__
LONG_DESCRIPTION = ("The appconfig module provides user configuration file "
"management features for Python applications. "
"It is based on the config module of the Spyder project, "
"which is available at "
"https://github.com/spyder-ide/spyder.")
INSTALL_REQUIRES = ['appdirs']
setup(name='appconfigs',
version=__version__,
description=("User configuration file management features "
"for Python applications."),
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license='MIT',
author='Jean-Sébastien Gosselin',
author_email='[email protected]',
url=__project_url__,
ext_modules=[],
packages=setuptools.find_packages(),
package_data={},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
classifiers=["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6"],
)