-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 849 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 849 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 setuptools import setup
setup(
name="calligraphic-rulings",
version="0.2alpha",
description='Script to generate ruling pages for western calligraphy',
long_description=open('README.txt').read(),
license='GPL',
author='Noufal Ibrahim',
author_email='noufal@nibrahim.net.in' ,
url='https://github.com/nibrahim/Calligraphic-Rulings',
platforms=['linux', 'osx', 'win32'],
py_modules=['calligraphic_rulings'],
install_requires = ['reportlab'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Utilities',
'Programming Language :: Python',
],
)