-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 974 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='spacemenu',
version='0.4',
author='pmcoelho',
author_email='pmcoelho@protonmail.com',
url='https://github.com/pm-coelho/spacemenu',
description='A spacemacs menu inspired gtk module',
long_description=readme(),
long_description_content_type="text/markdown",
license='GPLv3+',
packages=find_packages(exclude=('test')),
include_package_data=True,
install_requires=['pycairo','PyGObject'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: X11 Applications',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)