forked from modm-io/modm-devices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 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
import sys
sys.path.append(".")
from setuptools import setup, find_packages
from modm_devices import __version__
with open("README.md") as f:
long_description = f.read()
setup(
name = "modm-devices",
version = __version__,
python_requires=">=3.5.0",
packages = find_packages(exclude=["test"]),
package_data = {
"": ["resources/devices/*/*",
"resources/*",
"resources/*/*"],
},
install_requires = ["lxml"],
# Metadata
author = "Niklas Hauser",
author_email = "[email protected]",
description = "Curated data for AVR and ARM Cortex-M devices",
long_description=long_description,
long_description_content_type="text/markdown",
license = "MPL-2.0",
keywords = "modm lbuild modm-devices stm32 avr sam nrf",
url = "https://github.com/modm-io/modm-devices",
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Embedded Systems",
],
)