-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (35 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
Setup script for lipsum - a Python-based Lorem Ipsum text generator.
"""
from setuptools import setup
from lipsum import __version__
setup(
name="lipsum",
version=__version__,
description="A randomised Lorem Ipsum generator library for Python",
author="Thane Thomson",
author_email="[email protected]",
url="https://github.com/thanethomson/lipsum",
packages=["lipsum"],
package_data={
"lipsum": [
"data/*.txt"
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Utilities"
]
)