summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael P. Soulier <msoulier@digitaltorque.ca>2018-05-18 08:33:03 -0400
committerMichael P. Soulier <msoulier@digitaltorque.ca>2018-05-18 08:33:03 -0400
commit65cf5f8e28fa0a2d012ad6827275ae6c6ed42cbd (patch)
tree2d941609237245df54f176d1df76cdb5d56146ce
parent85942ef5e967142df6b08887eb2d08d203adc384 (diff)
downloadtftpy-65cf5f8e28fa0a2d012ad6827275ae6c6ed42cbd.tar.gz
setup.py changes
-rw-r--r--MANIFEST15
-rwxr-xr-xsetup.py9
2 files changed, 8 insertions, 16 deletions
diff --git a/MANIFEST b/MANIFEST
deleted file mode 100644
index 4a4d6ef..0000000
--- a/MANIFEST
+++ /dev/null
@@ -1,15 +0,0 @@
-# file GENERATED by distutils, do NOT edit
-COPYING
-ChangeLog
-README
-setup.py
-bin/tftpy_client.py
-bin/tftpy_server.py
-tftpy/TftpClient.py
-tftpy/TftpContexts.py
-tftpy/TftpPacketFactory.py
-tftpy/TftpPacketTypes.py
-tftpy/TftpServer.py
-tftpy/TftpShared.py
-tftpy/TftpStates.py
-tftpy/__init__.py
diff --git a/setup.py b/setup.py
index e9daa01..ae99d7f 100755
--- a/setup.py
+++ b/setup.py
@@ -7,10 +7,17 @@ setup(name='tftpy',
description='Python TFTP library',
author='Michael P. Soulier',
author_email='msoulier@digitaltorque.ca',
- url='http://tftpy.sourceforge.net',
+ url='http://github.com/msoulier/tftpy',
packages=['tftpy'],
scripts=['bin/tftpy_client.py','bin/tftpy_server.py'],
+ project_urls={
+ 'Documentation': 'http://tftpy.sourceforge.net/sphinx/index.html',
+ 'Source': 'https://github.com/msoulier/tftpy/',
+ 'Tracker': 'https://github.com/msoulier/tftpy/issues',
+ },
+ python_requires='>=2.7',
classifiers=[
+ 'Programming Language :: Python :: 2.7',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',