forked from PersonalNOVEL/functionally
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 671 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
import os
from distutils.core import setup
setup(name='functionally',
version='1.0.1',
description='Simple & extensive functional programming library',
#long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
author='Daniel Werner',
author_email='daniel.d.werner@gmail.com',
url='http://github.com/danwerner/functionally',
packages=['functionally'],
keywords="functional",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
],
license="MIT",
)