-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (25 loc) · 1.15 KB
/
setup.py
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
#from setuptools import setup
from distutils.core import setup
setup(
name = 'caterapp',
packages=['caterapp'],
version = '1.1', # Ideally should be same as your GitHub release tag varsion
description='A TCP based file sharing application',
author='Ravi Prakash',
author_email='[email protected]',
url='https://github.com/ravi-prakash1907/CaterApp', # github source url
download_url = 'https://github.com/ravi-prakash1907/CaterApp/archive/refs/tags/v0.1-alpha.tar.gz',
long_descp = 'README.md',
keywords = ['v0.1-alpha', 'caterapp'],
REQUIRED = ['cater','shareBox'],
classifiers=[
'Development Status :: 3 - Alpha', # "3 - Alpha", "4 - Beta" or "5 - Production/Stable" ---- the current state of this package
'License :: OSI Approved :: MIT License', # picking a license
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
],
)