-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (36 loc) · 1.25 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
import glob
import os
import pathlib
import setuptools
package_data = dict()
package_data['ambit'] = []
for path, paths, files in os.walk('ambit/resources/', followlinks=True):
for f in files:
include = os.path.join(path, f)[6:]
package_data['ambit'].append(include)
setuptools.setup(
name='ambit',
version='0.3.6',
description='Take control of your Palette.',
long_description=(
'**ambit** is a Python library for interacting with PaletteGear '
'and MonogramCC devices, a graphical simulator for device-free '
'development, and an accompanying set of configurable end user '
'tools and demos.'
),
long_description_content_type='text/markdown',
keywords=['monogramcc', 'palettegear', 'demoscene', 'pygame', 'linux', 'pyusb'],
url='https://github.com/khimaros/ambit',
author='khimaros',
packages=setuptools.find_packages(),
package_data=package_data,
scripts=glob.glob('./bin/*'),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX',
'Topic :: System :: Hardware',
],
python_requires='>=3.6',
)