-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
24 lines (24 loc) · 856 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
from setuptools import setup
setup(
name = 'jewish',
packages = ['jewish'],
version = '0.1',
description = 'Jewish calendar calculations',
author = 'Eitan Mosenkis',
author_email = '[email protected]',
url = 'https://github.com/emosenkis/jewish',
download_url = 'https://github.com/emosenkis/jewish/tarball/0.1',
keywords = ['jewish', 'hebrew', 'calendar', 'date'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: Hebrew',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Religion',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Utilities',
],
)