-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 1.13 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
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name="spaceship",
version="0.8.2",
packages=find_packages(),
install_requires=[
'netifaces'
],
url = 'https://github.com/antoan-angelov/spaceship/',
author="Antoan Angelov",
author_email="[email protected]",
description="Python utility for chat and streaming files across machines in the same network",
license="MIT",
keywords="spaceship python terminal chat stream files same network",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Chat",
"Topic :: Utilities",
"Programming Language :: Python :: 3.4",
"Operating System :: POSIX :: Linux",
"Natural Language :: English",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License"
],
entry_points={
'console_scripts': [
'spaceship = spaceship.__main__:main'
]
}
)