-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 1.01 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
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "vprgen",
version = "0.0.1",
author = "Ang Li",
author_email = "[email protected]",
description = "VPR's architecture description and routing resource graph XML generation API",
url = "https://github.com/leon575777642/vprgen",
packages = find_packages(exclude=["tests"]),
include_package_data = True,
long_description = read("README.md"),
classifiers = [
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
],
install_requires = ["lxml", "jsonschema>=3.0.0", "future", "typing", "enum34"],
setup_requires = ["pytest-runner"],
tests_require = ["pytest", "xmltodict"],
)