-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.17 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.17 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup
# reading long description from file
with open('DESCRIPTION.txt') as file:
long_description = file.read()
# specify requirements of your package here
REQUIREMENTS = ['flask', 'waitress']
# some more details
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
]
# calling the setup function
setup(name='simple_remote_function_call',
version='0.1',
description='A simple remote function call server and client.',
long_description=long_description,
url='https://github.com/faberf/simple_remote_function_call/',
author='Fynn Firouz Faber',
author_email='faberf@ethz.ch',
license='MIT',
packages=['simple_remote_function_call'],
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
keywords='remote server client function',
entry_points={
'console_scripts': [
'srfc_start=simple_remote_function_call:start_server',
],
},
)