-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 859 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 859 Bytes
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
from setuptools import setup
setup(
name="pyrocket",
version="0.2.9",
description="Rocket sync-tracker client",
long_description=open('README.rst').read(),
url="https://github.com/Contraz/pyrocket",
author="Einar Forselv",
author_email="eforselv@gmail.com",
maintainer="Einar Forselv",
maintainer_email="eforselv@gmail.com",
include_package_data=True,
keywords=['synchronizing', 'music', 'rocket'],
packages=['rocket'],
classifiers=[
'Programming Language :: Python',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Graphics',
'License :: OSI Approved :: zlib/libpng License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
)