-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (25 loc) · 809 Bytes
/
setup.py
File metadata and controls
25 lines (25 loc) · 809 Bytes
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
from distutils.core import setup
from setuptools import setup
setup(
name = 'AstroX',
packages = ['astrox'],
version = '0.1.106',
description = 'AstroX Python Server',
author = 'Alexander Simpson',
author_email = 'as2388@cam.ac.uk',
url = 'https://github.com/as2388/AstroX',
#download_url = 'https://github.com/peterldowns/mypackage/tarball/0.1',
install_requires=[
'autobahn',
'sense-hat',
'pillow',
'twisted'
],
keywords = ['AstroPi', 'Scratch', 'ScratchX'],
classifiers = [],
entry_points={
'console_scripts': [
'astrox = astrox.__main__:main',
]
}
)