forked from glvnst/usersettings
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.27 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
#!/usr/bin/python
""" Setup the setup """
from setuptools import setup
LONG_DESCRIPTION = """
usersettings
------------
"usersettings" is a python module for easily managing persistent settings
using an editable format and stored in an OS-appropriate location
(windows/os x/linux are supported).
For more information, please refer to README.md or the `usersettings github
page <https://github.com/glvnst/usersettings>`_.
"""
setup(
name = "usersettings",
version = "1.0.7",
author = "Ben Burke",
author_email = "benburke42@gmail.com",
url = "https://github.com/glvnst/usersettings",
description = "Portable Local Settings Storage",
long_description = LONG_DESCRIPTION,
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
],
platforms = ["any"],
license = "https://raw.github.com/glvnst/usersettings/master/LICENSE.txt",
py_modules=['usersettings'],
package_data = {'': ['*.md', 'docs/*.txt', 'examples/*.py']},
install_requires = ['appdirs>=1.2'],
)