forked from mjmvisser/adl3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 747 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 747 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
#!/usr/bin/env python
from distutils.core import setup
files = ["atitweak", "adl3/*"]
setup(name="adl3",
version="0.3",
description="ADL (AMD Display Library)",
author="Mark Visser",
author_email="mjmvisser@gmail.com",
url="https://github.com/mjmvisser/adl3",
packages=["adl3"],
scripts=["atitweak"],
zip_safe=True,
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.6",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Graphics"]
)