This repository has been archived by the owner on Jan 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (46 loc) · 1.44 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
42
43
44
45
46
47
48
49
import os
try:
from setuptools import setup
from setuptools import find_packages
except ImportError:
from distutils.core import setup
with open('README.rst', 'r') as f:
readme = f.read()
setup(
version='1.0',
name='aforgizmo',
description='Pocket Philosopher',
long_description='Pocket Philosopher (Aforgizmo Aphorisms) is a tool to store and display aphorisms.',
platforms = ['Linux','OSX','Android'],
author='Vijay Mahrra',
license='GPL3.0',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Desktop Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License V3.0',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: Google :: Android',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Communications :: Personal'
],
url='https://github.com/vijinho/aforgizmo',
download_url='https://github.com/vijinho/aforgizmo',
package_dir = {'.': ''},
install_requires=[
'nose>=1.3.4',
'Click>=3.3',
'Peewee>=2.3.3',
'docutils',
'plyer'
],
scripts=[],
entry_points='''
[console_scripts]
aforgizmo=cli
'''
)