-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
38 lines (36 loc) · 1.04 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='riceDB',
# version='',
description=' A simple, portable configuration file manager',
long_description=(
"""
RiceDB will be a universal configuration file manager designed
to make it easy to obtain configurations for any application that fit
your individual needs.
"""
),
classifiers=[
'Package manager',
'Environment :: Console',
'Intended Audience :: ricer',
'Intended Audience :: neckbeard',
'Operating System :: logos'
'Operating System :: GNU/Linux'
'Topic :: Package manager',
'Topic :: config manager',
'Topic :: rice',
],
author='lo/g/os',
author_email='',
url='http://logos-linux.org/',
download_url='https://github.com/install-logos/riceDB',
platforms='GNU/Linux',
license='GPL V3',
install_requires=['requests'],
packages=['ricedb','ricedb/rice'],
scripts=['rice']
)