-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (48 loc) · 2 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name=u'pysheets'.encode('utf-8'),
version='0.1',
author=u'Vytautas Astrauskas'.encode('utf-8'),
author_email=u'[email protected]'.encode('utf-8'),
packages=['pysheets',],
package_dir={'': 'src'},
#package_data={'pysheets': []},
# List of data files to be included
# into package.
requires=[
'distribute',
],
install_requires=[ # Dependencies for the package.
],
scripts=[], # List of python script files.
#data_files=[('/etc/init.d', ['init-script'])]
# List of files, which have to
# be installed into specific
# locations.
#url='', # Home page.
#download_url='', # Page from which package could
# be downloaded.
description=u'pysheets'.encode('utf-8'),
long_description=(
open('README.rst').read()+open('CHANGES.txt').read()),
# Full list of classifiers could be found at:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 1 - Planning',
#'Environment :: Console',
#'Framework :: Django',
'Intended Audience :: Developers',
(
'License :: OSI Approved :: '
'GNU Library or Lesser General Public License (LGPL)'),
#'Natural Language :: Lithuanian',
'Operating System :: OS Independent',
'Programming Language :: Python',
(
'Topic :: Software Development :: Libraries :: '
'Python Modules'),
],
license='LGPL'
)