-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (26 loc) · 883 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (26 loc) · 883 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
27
28
29
30
31
32
33
34
#!/usr/bin/env python3
from os import path, listdir
from setuptools import setup, find_packages
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
def files(dirname):
return [path.join(dirname, filename) for filename in listdir(dirname)]
setup(
name="sfp-eval",
version="0.1",
description="Evaluation tools of SFP",
url="https://github.com/openalto/sfp-eval",
author="Y.Jace Liu, Jensen Zhang",
author_email="yang.jace.liu@linux.com, hack@jensen-zhang.site",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
"Intented Audience :: Developers",
"Topic :: System :: Emulators",
],
license="MIT",
long_description=read("README.md"),
packages=find_packages(),
zip_safe=False
)