- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
23 lines (22 loc) · 866 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
fromdistutils.coreimportsetup
setup(
name="pythonCRC",
packages= ["pythonCRC"],
version="1.0.0",
description="Easy to yse CRC calculator",
author="Diogo Alves",
author_email="diogo.alves@mafralab.com",
url="https://github.com/killercode/PythonCRC/",
download_url="http://chardet.feedparser.org/download/python3-chardet-1.0.1.tgz",
keywords= ["CRC"],
classifiers= [
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)