-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
hugsy
committed
Jul 21, 2017
1 parent
aa5adb6
commit 3796c09
Showing
1 changed file
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,24 +4,33 @@ def readme(): | |
with open('README.md') as f: | ||
return f.read() | ||
|
||
PROGNAME = 'cemu' | ||
AUTHOR = 'hugsy' | ||
EMAIL = '[email protected]' | ||
VERSION = '0.2' | ||
URL = 'https://github.com/{}/{}'.format(AUTHOR, PROGNAME) | ||
RELEASE_LINK = '{}/archive/{}.tar.gz'.format(URL, VERSION) | ||
LICENSE = 'MIT' | ||
|
||
setup( | ||
name='cemu', | ||
name=PROGNAME, | ||
description='''Cemu is a Cheap EMUlator, that combines all the advantages of a basic assembly IDE, | ||
compilation and execution environment by relying on the great libraries Keystone, Unicorn and | ||
Capstone engines in a Qt powered GUI.''', | ||
long_description=readme(), | ||
url='https://github.com/hugsy/cemu', | ||
url=URL, | ||
download_url=RELEASE_LINK, | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Software Development :: Assemblers', | ||
'Natural Language :: English', | ||
], | ||
author='hugsy', | ||
author_email='[email protected]', | ||
version='0.2', | ||
license='MIT', | ||
author=AUTHOR, | ||
author_email=EMAIL, | ||
version=VERSION, | ||
license=LICENSE, | ||
include_package_data=True, | ||
packages=find_packages(), | ||
install_requires=[ | ||
|