Skip to content
This repository was archived by the owner on Mar 14, 2023. It is now read-only.

Commit e21037b

Browse files
committed
switch to setuptools instead of distutils
1 parent 7720ac5 commit e21037b

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

setup.py

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
#!/usr/bin/env python
22

3-
from distutils.core import setup
3+
from setuptools import setup
44

5-
setup(name='highfive',
6-
version='0.1',
7-
description='GitHub hooks to provide an encouraging atmosphere for new contributors',
8-
author='Rust Community',
9-
author_email='no-idea@no-server.no-suffix',
10-
url='https://github.com/rust-lang-nursery/highfive',
11-
packages=['highfive'],
5+
setup(
6+
name = 'highfive',
7+
version = '0.1',
8+
description = 'GitHub hooks to provide an encouraging atmosphere for new contributors',
9+
author = 'Rust Community',
10+
author_email = 'no-idea@no-server.no-suffix',
11+
url = 'https://github.com/rust-lang-nursery/highfive',
12+
packages = [
13+
'highfive',
14+
],
1215
)

0 commit comments

Comments
 (0)