-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 681 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 681 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
from setuptools import setup, find_packages
version = '0.2.2'
setup(
name='activitystreams',
version=version,
description="ActivityStreams 2.0 JSON implementation",
long_description="""Activity Streams 2.0""",
classifiers=[],
keywords='activitystreams',
author='Oscar Eriksson',
author_email='oscar.eriks@gmail.com',
url='https://github.com/sovaa/activitystreams',
license='LICENSE.txt',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'strict-rfc3339==0.7', # parsing dates
],
test_requires=[
'nose2==0.10.0'
])