File: setup.py

package info (click to toggle)
jcal 0.5.1-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,560 kB
  • sloc: ansic: 2,124; javascript: 1,370; python: 815; makefile: 202; sh: 186
file content (29 lines) | stat: -rw-r--r-- 852 bytes parent folder | download
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
#!/bin/env python

import os
import sys
from distutils.core import setup
src_p = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, src_p)
import pyjalali

version = '.'.join(map(str, pyjalali.__version__))

setup(
        name='pyjalali',
        description='Jalali calendar tools based on libjalali',
        long_description=pyjalali.__doc__.replace(' '*4, ''),
        url='http://github.com/ashkang/jcal',
        license='GPLv3',
        version=version,

        packages=['pyjalali'],

        classifiers = [
            'Development Status :: 3 - Alpha',
            'Intended Audience :: Developers',
            'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
            'Topic :: Software Development :: Libraries :: Python Modules',
            'Topic :: Software Development :: Localization'
        ]
)