-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 911 Bytes
/
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
#!/usr/bin/python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
import sys
import os
import os.path as path
setup(
name = "dataUploader",
version = "1.0.1",
author = "Roman Dvorak",
author_email = "[email protected]",
description = ("Software for backup data to space.astro.cz server"),
license = "General Public License v3'",
keywords = "ssh, backup, ",
url = "http://wiki.bolidozor.cz",
packages=[],
long_description="",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: Czech',
# 'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
)